home *** CD-ROM | disk | FTP | other *** search
- #ifndef __MiscRadioTracker_h
- #define __MiscRadioTracker_h
- //=============================================================================
- //
- // Copyright (C) 1995 by Paul S. McCarthy and Eric Sunshine.
- // Written by Paul S. McCarthy and Eric Sunshine.
- // All Rights Reserved.
- //
- // This notice may not be removed from this source code.
- //
- // This object is included in the MiscKit by permission from the authors
- // and its use is governed by the MiscKit license, found in the file
- // "License.rtf" in the MiscKit distribution. Please refer to that file
- // for a list of all applicable permissions and restrictions.
- //
- //=============================================================================
- //-----------------------------------------------------------------------------
- // MiscRadioTracker.h
- //
- // Radio-mode selection tracking.
- //
- //-----------------------------------------------------------------------------
- //-----------------------------------------------------------------------------
- // $Id: MiscRadioTracker.h,v 1.1 95/09/27 12:21:21 zarnuk Exp $
- // $Log: MiscRadioTracker.h,v $
- // Revision 1.1 95/09/27 12:21:21 zarnuk
- // Initial revision
- //
- //-----------------------------------------------------------------------------
- #import "MiscMouseTracker.h"
-
- @interface MiscRadioTracker : MiscMouseTracker
- {
- }
-
- - (void) mouseDown: (NXEvent const*) event atPos: (MiscCoord_V) pos;
- - (void) mouseDragged: (NXEvent const*) event atPos: (MiscCoord_V) pos;
- - (void) mouseUp: (NXEvent const*) event atPos: (MiscCoord_V) pos;
- - (void) keyDown: (NXEvent const*) event atPos: (MiscCoord_V) pos;
-
- @end
-
- #endif // __MiscRadioTracker_h
-